home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Reference Guide
/
C-C++ Interactive Reference Guide.iso
/
c_ref
/
csource2
/
sclib_1
/
1_7
/
v7n7023a.txt
< prev
next >
Wrap
Text File
|
1995-11-01
|
336b
|
15 lines
1 #include <stream.h>
2
3 class Array { // array of integers
4 public:
5 Array(int size);
6 int & value(int index);
7 int & operator[ ] (int index);
8 friend ostream & operator<< (ostream &os, Array v);
9 private:
10 int *array;
11 int arraysize;
12 };